home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 2 / Apprentice-Release2.iso / Tools / Languages / MacHaskell 2.2 / haskell-setup < prev    next >
Encoding:
Text File  |  1994-09-27  |  936 b   |  27 lines  |  [TEXT/ttxt]

  1. #!/bin/csh
  2. #
  3. # Set up for Yale Haskell 2.x users.
  4. #
  5.  
  6. setenv PRELUDE $HASKELL/progs/prelude
  7. setenv HASKELL_LIBRARY $HASKELL/progs/lib
  8.  
  9. # You may need to change this to point at the appropriate subdirectory,
  10. # depending on which Lisp is being used.
  11. setenv LIBRARYBIN $HASKELL_LIBRARY/bin/lucid
  12. #setenv LIBRARYBIN $HASKELL_LIBRARY/bin/cmu
  13.  
  14. # You may need to change this to point at the appropriate executable,
  15. # depending on which Lisp is being used.
  16. setenv HASKELLPROG $HASKELL/bin/haskell
  17. #setenv HASKELLPROG $HASKELL/bin/cmu-haskell
  18.  
  19. # You only need this next definition if you are using the CMU CL version
  20. # of haskell and you have /tmp mounted on a tmpfs file system (it won't
  21. # be able to initialize itself otherwise).
  22. setenv CMUCL_EMPTYFILE /var/tmp/empty
  23.  
  24. # This environment variable has to be defined so that CMU CL can find
  25. # the shell script load-foreign.csh used by its foreign-function interface.
  26. setenv CMUCLLIB $HASKELL/bin
  27.